Avoid compiler warnings
authorMatthias Clasen <mclasen@redhat.com>
Sun, 10 Jul 2011 04:04:25 +0000 (00:04 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 10 Jul 2011 04:10:20 +0000 (00:10 -0400)
The obj variable in gtk_notebook_accessible_notify_gtk was shadowing
the parameter of the same name.

gtk/a11y/gtknotebookaccessible.c

index cf88eb651345f852853839afb21199ca9b9a6451..7fb31e89905bb29211c7d5d14b957edb020365ff 100644 (file)
@@ -245,22 +245,22 @@ gtk_notebook_accessible_notify_gtk (GObject    *obj,
 
       if (page_num != old_page_num)
         {
-          AtkObject *obj;
+          AtkObject *child;
 
           if (old_page_num != -1)
             {
-              obj = gtk_notebook_accessible_ref_child (atk_obj, old_page_num);
-              if (obj)
+              child = gtk_notebook_accessible_ref_child (atk_obj, old_page_num);
+              if (child)
                 {
-                  atk_object_notify_state_change (obj, ATK_STATE_SELECTED, FALSE);
-                  g_object_unref (obj);
+                  atk_object_notify_state_change (child, ATK_STATE_SELECTED, FALSE);
+                  g_object_unref (child);
                 }
             }
-          obj = gtk_notebook_accessible_ref_child (atk_obj, page_num);
-          if (obj)
+          child = gtk_notebook_accessible_ref_child (atk_obj, page_num);
+          if (child)
             {
-              atk_object_notify_state_change (obj, ATK_STATE_SELECTED, TRUE);
-              g_object_unref (obj);
+              atk_object_notify_state_change (child, ATK_STATE_SELECTED, TRUE);
+              g_object_unref (child);
               /*
                * The page which is being displayed has changed but there is
                * no need to tell the focus tracker as the focus page will also